Mifare Sector Data
data class MifareSectorData(val sectorIndex: Int, val keyA: String? = null, val keyB: String? = null, val blockData: List<MifareBlockData> = emptyList()) : Parcelable
This data class contains the data necessary when reading data from a mifare card. The keys required for authenticating the sector we are attempting to write to should be provided only if we want to use them for authentication. if we provide keyA it will be used and we shouldn't provide keyB.
Constructors
Link copied to clipboard
constructor(sectorIndex: Int, keyA: String? = null, keyB: String? = null, blockData: List<MifareBlockData> = emptyList())